点击任何谷歌地图标记时,我需要发生一些事情。我使用此链接中的演示作为起点:
http://gmap3.net/examples/tags.html
更新 - 我尝试了以下内容:
$.each(markers, function(i, marker){
marker.click(function(){
alert('alert');
});
});
$.each(markers, function(i, marker){
$(marker).click(function(){
alert('alert');
});
});
更新我已尝试将此中间部分添加到现有代码中:
$.each(markers, function(i, marker){
marker.setMap( checked ? map : null);
//added code begins
$(marker).click(function(){
alert('dfd');
});
//added code ends
});
答案 0 :(得分:3)
google.maps.event.addListener(marker, 'click', function() {
});
参考:https://code.google.com/apis/maps/documentation/javascript/events.html#UIEvents
答案 1 :(得分:1)
请注意,OP正在询问是否使用GMAP3库执行此操作,该库是一个jQuery插件库,可在Google Maps图层上添加API图层。说Google API是使用google.maps.addListener是绝对正确的,但我认为OP需要的东西更接近GMAP3 example using addMarkers,但是听一下click事件。考虑到这一点,我修改了GMAP3中的示例并将mouseenter事件更改为click事件并摆脱了mouseleave事件。
对于那些想要进一步玩的人,我创建了一个jsFddle of this example。
这是来源:
<!DOCTYPE HTML>
<html>
<head>
<style>
#map {
width: 400px;
height: 400px;
}
</style>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"> </script>
<script type="text/javascript" src="http://gmap3.net/js/gmap3-4.1-min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#map').gmap3({
action: 'init',
options: {
center: [46.578498, 2.457275],
zoom: 5
}
}, {
action: 'addMarkers',
markers: [
{
lat: 48.8620722,
lng: 2.352047,
data: 'Paris !'},
{
lat: 46.59433,
lng: 0.342236,
data: 'Poitiers : great city !'},
{
lat: 42.704931,
lng: 2.894697,
data: 'Perpignan ! <br> GO USAP !'}
],
marker: {
options: {
draggable: false
},
events: {
click: function(marker, event, data) {
var map = $(this).gmap3('get'),
infowindow = $(this).gmap3({
action: 'get',
name: 'infowindow'
});
if (infowindow) {
infowindow.open(map, marker);
infowindow.setContent(data);
} else {
$(this).gmap3({
action: 'addinfowindow',
anchor: marker,
options: {
content: data
}
});
}
}
}
}
});
});
</script>
</head>
<body>
<div id="map" style="width: 400x; height: 400px"></div>
</body>
</html>
答案 2 :(得分:0)
你的问题确实没有太多细节,但也许你需要这样的东西:
$.each(markers, function(i, marker){
marker.click(function(){ //maybe, its $(marker).click
console.log(marker);
});
});
编辑:这对你有用......
google.maps.event.addListener(marker, 'click', toggleBounce);
如果你谷歌那个确切的行,你会得到进一步的指示......祝你好运!