谷歌地图。点击后如何更改图标

发布于 2025-01-02 16:50:34 字数 463 浏览 1 评论 0原文

编写了以下代码:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

随遇而安 2025-01-09 16:50:34

您应该使用以下内容:

var markerHighlight = new google.maps.MarkerImage(site_hUrl, new google.maps.Size(32, 36));


 marker.addListener('click', function(marker) {
      marker.setIcon(markerHighlight);
}

其中 site_hUrl 是您要替换的新图标的 url。
就这样。

You should use this:

var markerHighlight = new google.maps.MarkerImage(site_hUrl, new google.maps.Size(32, 36));


 marker.addListener('click', function(marker) {
      marker.setIcon(markerHighlight);
}

Where site_hUrl is the url of the new icon you wish to replace.
Thats all.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文