我正在使用this plugin.我正在尝试获取viewport
的位置长度。我正在做的是添加事件,因为我需要每个更改的信息,并试图找出如何拉取地图对象的数据。
JS
:
$scope.events = {
bounds_changed: function(pos) {
console.log('pos');
console.log(pos);
}
}
HTML:
<ui-gmap-google-map events="events"></ui-gmap-google-map>
但是在那个地图对象中,我无法找到可以帮助我的东西。
答案 0 :(得分:0)
实际上解决方案是在文档中 使用Javascript:
$scope.bounds = {}:
$scope.events = {
bounds_changed: function() {
console.log($scope.bounds);
}
}
HTML:
<ui-gmap-google-map events="events" bounds="bounds"></ui-gmap-google-map>