Leaflet在加载地图后添加标记

时间:2016-12-09 07:48:08

标签: javascript leaflet

如何在地图加载后添加其他标记?

我尝试使用按钮添加标记:

L.easyButton('fa-compass', 
          function (){
            var newMarker = new L.marker(47.972850,7.856000).addTo(map); 
            map.update()},
         'Interact with the map'
        ).addTo(map)

新标记未显示。如何将标记添加到地图中?

1 个答案:

答案 0 :(得分:1)

你可以直接使用L.marker这里这里是一个lat和long的对象,map是你的地图持有者

 L.marker(place, {
            draggable: true,
            title: "my point",
            alt: "my point",
            riseOnHover: true
        }).addTo(map)

请参阅此http://jsfiddle.net/LnzN2/582/了解演示