谷歌地图。点击后如何更改图标
编写了以下代码:
GEvent.addListener(marker, "click", function() {
// Delete all markers.
map.clearOverlays();
jQuery(points_array).each(function(i, point) {
map.addOverlay(new GMarker(point.coord, {icon : myIcon}));
});
map.addOverlay(new GMarker(marker.getLatLng(), {icon : activeIcon}));
map.panTo(marker.getLatLng());
});
但他工作不正常。就像所有逻辑一样。删除所有标签。划一下。并添加带有另一个图标的图标。
告诉我,我做的事情是错的。还有其他更简单的方法来解决这个问题吗?
Wrote the following code:
GEvent.addListener(marker, "click", function() {
// Delete all markers.
map.clearOverlays();
jQuery(points_array).each(function(i, point) {
map.addOverlay(new GMarker(point.coord, {icon : myIcon}));
});
map.addOverlay(new GMarker(marker.getLatLng(), {icon : activeIcon}));
map.panTo(marker.getLatLng());
});
But he is not working properly. And like all logical. Remove all tags. Put a scratch. And add the one with the other icon.
Tell me, what I'm doing is wrong. And is there some other, simpler ways to solve this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该使用以下内容:
其中 site_hUrl 是您要替换的新图标的 url。
就这样。
You should use this:
Where site_hUrl is the url of the new icon you wish to replace.
Thats all.