以编程方式单击标记和地图

时间:2010-08-30 02:33:32

标签: javascript google-maps

我想在Google地图中以编程方式点击标记和地图。我怎么能这样做?

3 个答案:

答案 0 :(得分:7)

以编程方式触发标记点击/事件的正确方法是使用google.maps.event

google.maps.event.trigger(marker, 'click')

答案 1 :(得分:5)

保留对要以编程方式单击的对象的引用,并在其上调用触发器事件。

http://code.google.com/apis/maps/documentation/javascript/reference.html

答案 2 :(得分:-2)

您可以使用此代码点击mao ...

function onload()
{
 var map= new google.maps.Map(document.getElementById('map'), {
center: new google.maps.LatLng(37.4419, -122.1419),
zoom: 14,
mapTypeId: google.maps.MapTypeId.ROADMAP,
disableDefaultUI: true
});
google.maps.event.addListener(map, 'click', function(event){
       alert('Lat: ' + event.latLng.lat() + ' and Longitude is: ' + event.latLng.lng());
//here you can do anything u want to code
}