这是一种发送evt
作为参数来访问纬度和经度的方法:
google.maps.event.addListener(map,"click", function(evt){//some code about Google maps});
这是我想要做的事情:
google.maps.event.addListener(map, "click", draw_way(evt));
当我点击地图并将evt
作为参数发送到指定的函数时,我想调用另一个函数。
答案 0 :(得分:0)
最后我找到了答案。这很容易。
google.maps.event.addListener(map,"click", function(){draw_way(evt)});