我一直在阅读许多类似的主题并且无法看到如何在我的代码中完成这项工作......任何建议都会受到赞赏。
我有很多通过AJAX设置的标记,我在地图下面从JSON结果中返回的数据创建了一个表。我想在我的数据表中创建一个可点击的链接,该链接将模拟地图上相应标记的点击,并打开已经为标记上的实际点击定义的信息窗口...
function display( json_results ) {
$("#map").gmap3({action:'clear'});
$("#map").gmap3(
{action: 'init',
options:{
center:true,
zoom:13,
mapTypeId: google.maps.MapTypeId.ROADMAP,
mapTypeControl: true,
mapTypeControlOptions: {
style: google.maps.MapTypeControlStyle.DROPDOWN_MENU
},
navigationControl: true,
scrollwheel: true,
streetViewControl: true
}
},
{action: 'addMarkers',
radius:100,
markers: json_results,
clusters:{
maxZoom: 10,
// This style will be used for clusters with more than 0 markers
20: {
content: '<div class="cluster cluster-1">CLUSTER_COUNT</div>',
width: 53,
height: 52
},
// This style will be used for clusters with more than 20 markers
50: {
content: '<div class="cluster cluster-2">CLUSTER_COUNT</div>',
width: 56,
height: 55
},
// This style will be used for clusters with more than 50 markers
100: {
content: '<div class="cluster cluster-3">CLUSTER_COUNT</div>',
width: 66,
height: 65
}
},
marker: {
options: {
//icon: new google.maps.MarkerImage('http://maps.gstatic.com/mapfiles/icon_green.png'),
clickable: true
},
events:{
click: function(marker,event,data) {
$(this).gmap3({action: 'clear', name : 'infowindow'});
$(this).gmap3({action: 'addinfowindow', anchor: marker, options: { content:
'<div class="text"><strong><div style="color:navy;">' + data.itype + '</strong><br/><div id="address" snum="' + data.streetnum + '" snam="' + data.streetnam + '" styp="' + data.streettyp + '">'+ data.iaddress +'</div><br/>' + data.inum + '<br/>'+ data.datetime +'</div><hr>'+data.notes+'</div>'} })
},
mouseover: function(marker, event, data){
$(this).gmap3(
{ action:'clear', name:'overlay'},
{ action:'addOverlay',
latLng: marker.getPosition(),
content: '<div class="infobulle">' +
'<div class="bg"></div>' +
'<div class="text">' + data.itype +'</div>' +
'</div>' +
'<div class="arrow"></div>',
offset: {
x:-46,
y:-73
}
});
},
mouseout: function(){
$(this).gmap3({action:'clear', name:'overlay'});
}
} //end events
} // end marker
}
,{action:"autofit"} //end action
);
};
我在加载页面时以及提交带有搜索结果的表单时从某些JQUERY调用此函数。一切都很完美。现在我想在地图外添加一个链接,触发点击相应的标记......
例如:<a href="javascript:google.maps.event.trigger(markers[i], "click")">See This Infowindow</a>
其中i是我传递给JSON的值,同时我将lat / long和infowindow数据传递给上面的函数。我假设要发送用于映射的第一个数据数组将是0,第二个数据将是1等,所以我会使i = 0表示第一个链接,i = 1表示第二个等...
不确定这个逻辑是否有意义,也许有更好的方法将引用传递给标记...
任何人都可以帮我解决这个问题吗?也许是一个简单的函数,我可以将标记的值传递给我现有的代码?或者你认为最好的方式......
谢谢大师!
答案 0 :(得分:1)
您是否尝试定义自己的处理点击的功能?
function myclick(i) {
google.maps.event.trigger(markers[i],"click");
}
和
function setHTML() {
var html = "";
for (var i=0; i<markers.length; i++) {
html += '<a href="javascript:myclick(' + i + ')">' + marker[i].id + '<\/a>';
}
document.getElementById("table").innerHTML = html;
}