leaflet-图层
前言:项目中会在地图上绘制很多的标记路线,如果都放在map容器中,那么对其中的个别标记或路线进行修改时可能会影响到其他的。为了使项目效果更流畅,地图更方便管理,那么就需要用到图层组。
一、创建图层组 1.创建空的图层组
let creategroup = L.featureGroup([]) //创建图层
console.log(creategroup)
this.newcreategroup = L.layerGroup([]) //创建图层
console.log(this.newcreategroup)
这是两种方式创建的结果,要中哪种可以看自己
2.添加到map中
//方法一
let creategroup = L.featureGroup([]) //创建图层
creategroup.addTo(this.map) //添加图层到map中
//方法二
this.newcreategroup = L.layerGroup([]) //创建图层
this.map.addLayer(this.newcreategro
leaflet-图层最先出现在Python成神之路。
共有 0 条评论