Google Api中的标记

时间:2014-02-17 19:23:23

标签: javascript google-maps

我遇到了问题,我无法为我的项目点击标记。我试过google.com,但没有任何作用。有人能帮我吗 ?

  var map = new google.maps.Map(document.getElementById("googleMap"), mapOptions);

  <!--Add markers to map using previously specified locations-->
  var marker = new google.maps.Marker({
  position: myLatlng,
  url:'http://www.google.com',
  title: 'Tobermory Distillery',
  map: map,
  });

由于

1 个答案:

答案 0 :(得分:0)

你可以将onclick绑定到这样的标记:

  google.maps.event.addListener(marker, 'click', function() {
    location.href = 'http://www.google.com';
  });