我想要的是使地图可点击并将我链接到我想要的地址 我现在的代码是
<script type="text/javascript">
jQuery(document).ready(function(){
// initiate googlemaps
jQuery("#' . $block_id . '-map").goMap({ address: "' . $address . '",
zoom: 15,
navigationControl: true,
maptype: "ROADMAP",
draggable: false, zoomControl: false, scrollwheel: true, disableDragging: true,
markers: [
{ "address" : "' . $address . '" }
]
});
});
</script>';
答案 0 :(得分:0)
google.maps.event.addListener(marker, 'click', function() {
...
});
您可以阅读here以上的点击事件的更多信息。