需要在html中引入依赖包
<script src='//api.tiles.mapbox.com/mapbox.js/plugins/leaflet-omnivore/v0.3.1/leaflet-omnivore.min.js'></script>
<el-upload
class="upload-demo"
:before-upload="onBeforeUploadImage"
action="string"
multiple>
<el-button size="mini">导入</el-button>
</el-upload>
parseKml(file){
let result= window.URL.createObjectURL(file)
omnivore.kml(result).addTo(this.map)//这里我的map主体
},
onBeforeUploadImage(file){
if(file.name.endsWith('kml')){
this.parseKml(file)
return
}
},
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。