0

使用Gmap3,我有一个显示一些位置但没有标记的地图集。现在我如何使用 javascript/jquery 以便向地图添加标记?基本上我有一个包含数据的数组,我想循环并用它向地图添加标记。

谢谢。

4

1 回答 1

0

我没有使用过 gmap3,但我认为这样的东西会起作用。查看非 gmap3 解决方案。

var locations = [
    [47.003088, -96.929448],
    [46.817268, -96.810024],
    [46.842064, -96.796163]
];

$("#test").gmap3({
    map:{
        options:{
        center:[46.842064, -96.796163],
        zoom: 5
    }
 }

for (var i = 0; i < locations.length; i++) {  
   $("#test").gmap3({         
        marker:{
           latLng: locations[i]
         }
   });
}
于 2013-04-28T08:33:28.933 回答