Google Maps marker as a link

后端 未结 2 1740
走了就别回头了
走了就别回头了 2021-02-10 15:10

I am using Google Maps for my website and I wander how can I use the Markers as links? I mean when I click a marker to open a particular link.

Thank you

2条回答
  •  旧巷少年郎
    2021-02-10 15:42

    To get this to open in a new tab add the following right after the "window.location.href = marker.url;":

    window.open(this.url, '_blank');
    

    So you would have:

    google.maps.event.addListener(marker, 'click', function() {
          window.location.href = marker.url;
          window.open(this.url, '_blank');
        });
    

提交回复
热议问题