如何在javascript中将点击事件添加到google map infowindow

时间:2016-08-05 07:18:08

标签: javascript google-maps

有谁知道如何在javascript中将点击事件添加到谷歌地图信息窗口? 我希望能够从弹出信息窗口中获取点击事件。 这有可能吗?

1 个答案:

答案 0 :(得分:2)

<!DOCTYPE html>
<html>
<head>
<script
src="http://maps.googleapis.com/maps/api/js">
</script>

<script>
var myCenter=new google.maps.LatLng(51.508742,-0.120850);

function initialize()
{
var mapProp = {
  center:myCenter,
  zoom:5,
  mapTypeId:google.maps.MapTypeId.ROADMAP
  };

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

var marker=new google.maps.Marker({
  position:myCenter,
  });

marker.setMap(map);

var infowindow = new google.maps.InfoWindow({
  content:"<button onclick='xyz()'>abcd</button>"
  });

google.maps.event.addListener(marker, 'click', function() {
  infowindow.open(map,marker);
  });
}

google.maps.event.addDomListener(window, 'load', initialize);

function xyz(){
alert('Hello')
}
</script>
</head>

<body>
<div id="googleMap" style="width:500px;height:380px;"></div>
</body>
</html>

请检查这对您有用