1

私はこれを使用しています: ngmap.github.io と ionic フレームワーク。

このjsコードのように、現在の位置を取得しようとしています:

google.maps.event.addListener(map, 'idle', function(){
    var bounds = map.getBounds();
 //returns an object with the NorthEast and SouthWest LatLng points of the bounds

});

このコードをangularjsに変換するにはどうすればよいですか?

4

1 に答える 1

1

ドキュメントによると:

NgMap.getMap().then(function(map) {...})マップインスタンスを取得するために使用されます。

var app = angular.module('myapp', ['ngMap']);
app.controller('mapcntrl', function (NgMap, $scope) {

    NgMap.getMap().then(function (map) {
        console.log(map.getBounds().toString());
    });
});
<script src="https://maps.google.com/maps/api/js"></script>
<script src="https://code.angularjs.org/1.3.15/angular.js"></script>
<script src="https://rawgit.com/allenhwkim/angularjs-google-maps/master/build/scripts/ng-map.js"></script>
<div ng-app="myapp" ng-controller="mapcntrl">
    <ng-map center="[-26.1367035,124.2706638]" zoom="5"></ng-map>
</div>

于 2016-01-20T14:03:24.123 に答える