goMap jquery如何添加一个click事件来映射

时间:2015-06-24 22:14:04

标签: javascript jquery google-maps

我想要的是使地图可点击并将我链接到我想要的地址 我现在的代码是

<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>';

1 个答案:

答案 0 :(得分:0)

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

您可以阅读here以上的点击事件的更多信息。