当我使用带有 angular-leaflet-directive 的传单地图并尝试添加绘图控件时,这会导致错误。
控制器:
SomeApp.controller("mainMapController", function ($scope){
angular.extend($scope, {
defaults: {
tileLayer: "http://{s}.tile.osm.org/{z}/{x}/{y}.png"
},
controls: {
draw: {}
}
})
leafletData.getMap().then(function(map) {
var drawnItems = $scope.controls.edit.featureGroup;
})
});
HTML 代码:
<div ng-controller="mainMapController">
<leaflet></leaflet>
</div>
Angular给出了这个错误:
错误:ng:areq 错误参数
论据mainMapController
不是。
你能给我一些帮助吗?
谢谢