解决腾讯地图标记多个点,只渲染最后一个点问题

解决方法

  1. new多个Geocoder,然后不同的点用不同的回调函数;适用于标记点不多的情况,多点标记不适用。
  2. 用setTimeout;但是多点渲染使用该方法很不现实,
  3. Geocoder及其回调函数放到for循环中,该方法适用于多点标记,具体如下。
 for (let index = 0; index < 2; index++) {
   const geocoder = new qq.maps.Geocoder();
   geocoder.setComplete(result => {
     this.completeCallback(result);
   });
   if (index === 0) {
     geocoder.getAddress(path[0]);
   } else {
     geocoder.getAddress(path[lastIndex]);
   }
 }

这里把回调函数的function转换成箭头函数了。

 completeCallback(result) {
   console.log(result);
   const start = new qq.maps.Label({
     position: result.detail.location,
     map: this.map,
     content: result.detail.address
   });
   const marker = new qq.maps.Marker({
     map: this.map,
     position: result.detail.location
   });
 }

你可能感兴趣的:(地图)