我想設置邊界到谷歌地圖實例,但沒有成功。我正在使用AngularJS和angular-google-maps
模塊。我最後的嘗試是:設置谷歌地圖邊界與角谷歌地圖
<div id="map_canvas">
<ui-gmap-google-map
center="map.center"
zoom="map.zoom"
bounds="map.bounds"
options="options">
<div ng-repeat="d in devicesMarkers track by d.id">
<ui-gmap-marker
idkey="d.id"
coords="d.center"
options="d.options">
</ui-gmap-marker>
<ui-gmap-circle
center="d.center"
stroke="d.circle.stroke"
fill="d.circle.fill"
radius="d.circle.radius"
visible="d.options.visible">
</ui-gmap-circle>
</div>
</ui-gmap-google-map>
</div>
在我app.js
我寫道:
(...)
.controller('TaihMapController', ['$scope', '$log', 'uiGmapGoogleMapApi', function($scope, $log, GoogleMapApi) {
$scope.devicesMarkers = devices;
$scope.map = {
center: { latitude: devices[0].center.latitude, longitude: devices[0].center.longitude },
zoom: 12,
bounds: {}
// fit: true,
};
GoogleMapApi.then(function(maps) {
$log.debug(maps);
var myBounds = new maps.LatLngBounds();
for (var k = 0; k < devices.length; k++) {
var _tmp_position = new maps.LatLng(
devices[k].center.latitude,
devices[k].center.longitude);
myBounds.extend(_tmp_position);
}
$scope.map.bounds = myBounds;
$scope.googleVersion = maps.version;
// $scope.bounds = myBounds;
// $scope.zoom = maps.getZoom();
// maps.fitBounds(myBounds);
// $scope.bounds = maps.getBounds();
});
功能maps.fitBounds()
不存在。我嘗試了$scope.map.bounds
的方法,但沒有迴應我的想法。
採取看看[此](https://github.com/angular-ui/angular-google-maps/blob/master /example/example.html)github,並嘗試搜索'bounds',有很多相關的代碼段。 – bjiang
我讀了這個文件,但沒有成功。這個要點包含了新的方法(基於建議的文件)https://gist.github.com/vitorcarvalhoml/62f804cd197572f28079如何根據邊界設置map.center和map.zoom? –