将 Leaflet 添加到我的 AngularJS 应用程序后:
<leaflet id="map" defaults="defaults" center="center" bounds="bounds" controls="controls" event-broadcast="events"></leaflet>
并设置它:
// Initialise the feature group to store editable layers
var drawnItems = new L.FeatureGroup();
// Initialise the draw control
var drawControl = new L.Control.Draw({
position: 'topright',
edit: {
featureGroup: drawnItems
}
});
// Configure Leaflet
angular.extend($scope, {
defaults: {
zoomControlPosition: 'topright',
minZoom: 3,
tileLayerOptions: {
detectRetina: true,
reuseTiles: true,
attribution: '<a href="http://osm.org">OpenStreetMaps</a>'
}
},
center: {},
controls: {
custom: [drawControl]
},
events: {
map: {
enable: ['click']
}
}
});
在此代码之后,它不会被评估(虽然没有显示错误):
leafletData.getMap().then(
function (map) {
alert('I have accessed the map.');
}
);
这应该立即向我显示警报,尽管没有任何反应。
如果我延迟前面的代码,例如,在单击按钮的函数中运行它,它就可以工作!
有谁知道可能是什么问题?
部分解决
从 HTML 标签中删除 IDleaflet
解决了这个问题。一定是个bug。