Google地图不会显示数组中的标记

时间:2017-05-12 03:34:27

标签: javascript php ajax maps

我需要一些帮助。我有一个谷歌地图,我使用ajax调用返回lat长 - 在成功我做了一个数组并将PHP结果传递给该数组。然后,我实例化了一张谷歌地图并厌倦了在地图上显示标记。我没有错误,我可以看到我发送的ajax。一些帮助将非常感谢为什么我的标记或不出现。

git fetch

enter image description here

1 个答案:

答案 0 :(得分:0)

添加单个标记。 请参阅此链接。 Multiple Markers

// Loop through our array of markers & place each one on the map  
for( i = 0; i < markers.length; i++ ) {
    var position = new google.maps.LatLng(markers[i][1], markers[i][2]);
    bounds.extend(position);
    marker = new google.maps.Marker({
        position: position,
        map: map,
        title: markers[i][0]
    });

    // Automatically center the map fitting all markers on the screen
    map.fitBounds(bounds);
}