您好我Div
我有2-3个内divs
个唯一身份s, having locations details in each
div`,现在我有一个地图,我在其上显示所有位置地图上的标记。所以现在我想要点击地图上任何标记的特定位置。
<div>
<div id = "Location1">Location1</div>
<div id = "Location2">Location2</div>
<div id = "Location3">Location3</div>
</div>
我正在使用标记gmap
标记。如何覆盖Map的addListener
功能。
Js文件包括库
$.get(Routing.generate('light_box', {id: id}), function(data){
$('#locationsG-map').mapmarker({
// zoom : 14,
center : 'London',
markers : data,
});
google.addListener('click', function () {
myCustomFunction(locationID)
});
点击不在这里工作我想调用自定义功能&#34; myCustomFunction&#34;这里突出显示点击的特定位置。请指导
先谢谢