丢弃街景小人时获取坐标。

时间:2015-07-13 19:12:52

标签: google-maps google-street-view

如何获得Pegman掉落地点的坐标?在Stackoverflow和Google API中找不到任何有用的文章。是否可以在Pegman drop上捕获任何事件?

1 个答案:

答案 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()) ;
 });