5

将 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.');
    }
);

这应该立即向我显示警报,尽管没有任何反应。

如果我延迟前面的代码,例如,在单击按钮的函数中运行它,它就可以工作!

有谁知道可能是什么问题?

看到例子,它应该工作:https ://github.com/tombatossals/angular-leaflet-directive/blob/master/examples/control-draw-example.html

部分解决

从 HTML 标签中删除 IDleaflet解决了这个问题。一定是个bug。

4

1 回答 1

19

您应该将标签中id指定的内容传递<leaflet>给 getMap() 函数。

在您的示例中, id 是map. 你会这样传递它:

leafletData.getMap("map").then(
    function (map) {
        alert('I have accessed the map.');
    }
);
于 2014-12-16T22:35:09.227 回答