如何在Google地图中传递“evt”作为参数?

时间:2013-10-12 07:19:42

标签: google-maps events

这是一种发送evt作为参数来访问纬度和经度的方法:

google.maps.event.addListener(map,"click", function(evt){//some code about Google maps});

这是我想要做的事情:

google.maps.event.addListener(map, "click", draw_way(evt));

当我点击地图并将evt作为参数发送到指定的函数时,我想调用另一个函数。

1 个答案:

答案 0 :(得分:0)

最后我找到了答案。这很容易。

google.maps.event.addListener(map,"click", function(){draw_way(evt)});