我有一个带有标记的谷歌地图,零售地点在哪里。
工作正常。
如果用户通过拖放更改地图焦点(更改地图提取) 如果在此地图提取中是商店,我想动态添加新标记。
我不知道,我在哪里找到这样的例子或其他东西。
答案 0 :(得分:3)
首先,您需要加载初始批次标记,然后侦听“bounds_changed”事件。当该事件触发时,只需获取新坐标和缩放级别并相应地加载标记。
您可以在此处找到示例:https://developers.google.com/maps/documentation/javascript/events
google.maps.event.addListener(map, 'bounds_changed', function() {
//Get the new location and zoom parameters
//and print the new markers
});