如何在gmap3中使用javascript修改标记?

时间:2013-04-28 01:46:41

标签: javascript jquery jquery-gmap3

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

感谢。

1 个答案:

答案 0 :(得分:0)

我没有使用gmap3,但我觉得这样的东西会起作用。 检查this以查找非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]
         }
   });
}