dsb12300 2017-04-08 08:16
浏览 32
已采纳

使用折线连接多个标记

I tried this code but no luck with polylines,may be because of small issue, i couldn't get polylines that connect the markers.
I need to connect multiple marker with polylines any alternative code also is welcome.

var locations = [];
// call php array
var latitude = <?php echo json_encode($latitude); ?>;
var longitude = <?php echo json_encode($longitude); ?>;
for(var i=0;i<20;i++){
 locations.push(["current",latitude[i], longitude[i]]);
}

var marker;
          function initMap() {
           var map = new google.maps.Map(document.getElementById('map'), {
          zoom: 5,
          center: new google.maps.LatLng(12.289774217827633, 76.30976921188685)
          });

var flightPath = new google.maps.Polyline({
                                            path: locations,
                                            geodesic: true,
                                            strokeColor: '#000000',
                                            strokeOpacity: 1.0,
                                            strokeWeight: 3
  });


flightPath.setMap(map);
 var infowindow = new google.maps.InfoWindow();
 var marker, i;

    for (i = 0; i < locations.length; i++) {  
      marker = new google.maps.Marker({
        position: new google.maps.LatLng(locations[i][1], locations[i][2]),
        map: map
      });

      google.maps.event.addListener(marker, 'click', (function(marker, i) {
        return function() {
          infowindow.setContent(locations[i][0]);
          infowindow.open(map, marker);
        }
      })(marker, i));
    }
}
  • 写回答

1条回答 默认 最新

  • duanke1984 2017-04-08 08:43
    关注

    flightPath should be called as an array.

    Please try this updated code.

    var locations = [
    
       ];
    
    // call php array
     var latitude = <?php echo json_encode($latitude); ?>;
     var longitude = <?php echo json_encode($longitude); ?>;
    for(var i=0;i<20;i++){
     locations.push(["current",latitude[i], longitude[i]]);
    }
    var marker;
         function initMap() {
           var map = new google.maps.Map(document.getElementById('map'), {
             zoom: 5,
             center: new google.maps.LatLng(12.289774217827633, 76.30976921188685)
           });
    
    
    // locations.push(["current",test2, test3]);
     var infowindow = new google.maps.InfoWindow();
    
     var marker, i;
    var flightPlanCoordinates = [];
    
       for (i = 0; i < locations.length; i++) {  
         marker = new google.maps.Marker({
           position: new google.maps.LatLng(locations[i][1], locations[i][2]),
           map: map
         });
    flightPlanCoordinates.push(marker.getPosition());
         google.maps.event.addListener(marker, 'click', (function(marker, i) {
           return function() {
             infowindow.setContent(locations[i][0]);
             infowindow.open(map, marker);
           }
         })(marker, i));
       }
       var flightPath = new google.maps.Polyline({
         map: map,
         path: flightPlanCoordinates,
         strokeColor: "#ff0000",
    
         strokeOpacity: 1.0,
         strokeWeight: 2
       });
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度