如何获得Pegman掉落地点的坐标?在Stackoverflow和Google API中找不到任何有用的文章。是否可以在Pegman drop上捕获任何事件?
答案 0 :(得分:1)
对于地图,请尝试使用click事件上的侦听器
google.maps.event.addListener(map, 'click', function(event){
alert(event.latLng );
});
街景的看看这个谷歌sample (下面你看到了这个概念,但是为了更完整,样本更好)
google.maps.event.addListener(panorama, 'position_changed', function() {
alert(panorama.getPosition()) ;
});