最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Add existing leaflet polygons to an existing leaflet layer - Stack Overflow

programmeradmin2浏览0评论

I have a bunch of polygons which are stored in a database. I would like to add them to the map in such a way that they can be edited using the leaflet-draw toolbar. Although, now the polygons get added to the map, I am unable edit them.

I think this is because they are not added to the layerGroup() to which newly drawn shapes are added.

Please help.

I have a bunch of polygons which are stored in a database. I would like to add them to the map in such a way that they can be edited using the leaflet-draw toolbar. Although, now the polygons get added to the map, I am unable edit them.

I think this is because they are not added to the layerGroup() to which newly drawn shapes are added.

Please help.

Share Improve this question edited Nov 2, 2016 at 10:58 Manuel 2,5524 gold badges22 silver badges36 bronze badges asked Nov 2, 2016 at 9:14 codejunkiecodejunkie 9682 gold badges21 silver badges34 bronze badges 2
  • 1 Did it solved your problem ? – Manuel Commented Nov 2, 2016 at 11:16
  • Thank you so much! – codejunkie Commented Nov 2, 2016 at 11:37
Add a ment  | 

2 Answers 2

Reset to default 17

You have to add your polygons to the featureGroup drawnItems ! Let's say,

    var polyLayers = dbArray;

is your database array with polygons. First create a feature group with your drawn items:

    var drawnItems = new L.FeatureGroup();

and add it to the map:

    map.addLayer(drawnItems);

Then you simply need to iterate over your polygons from your database and add them to the drawnItems FeatureGroup:

    for(layer of polyLayers) {
        drawnItems.addLayer(layer); 
    };

Now the layers are added to the map and editable.

Here goes an EXAMPLE:

    var drawnItems = new L.FeatureGroup();
    map.addLayer(drawnItems);

    var polyLayers = [];

    var polygon1 = L.polygon([
        [51.509, -0.08],
        [51.503, -0.06],
        [51.51, -0.047]
    ]);
    polyLayers.push(polygon1)

    var polygon2 = L.polygon([
        [51.512642, -0.099993],
        [51.520387, -0.087633],
        [51.509116, -0.082483]
    ]);
    polyLayers.push(polygon2)

    // Add the layers to the drawnItems feature group 
    for(let layer of polyLayers) {
        drawnItems.addLayer(layer); 
    }

As a simplistic and straight forward approach you could also add the polygons to the map without using the FeatureGroup.

const polygon = L.polygon([[lat,lng],[lat,lng],[lat,lng]], { fillOpacity: 0.5, fillColor: '#9a8fcd' });
polygon.addTo(map);

You can of course loop through your data and add all the polygons in this way as well.

发布评论

评论列表(0)

  1. 暂无评论