leaflet加载kml文件
【leaflet加载kml文件】需要在html中引入依赖包
导入
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
}
},
推荐阅读
- 使用SpringBoot构建项目,加载SSM整合的applicationContext.xml的注解
- Spring NamespaceHandlerResolver xml的标签加载的扩展 和 ApplicationContext
- 如何创建自定义加载动画以降低跳出率
- 使用Air热加载Go程序(windows下的配置)
- Android studio 使用 ImageView 加载 gif 文件
- JavaScript|JavaScript 模块的循环加载(循环依赖问题分析)
- 20-2-4 安卓软件中加载较大图片导致crash(Failed to allocate a xxx byte allocation with xxxfree bytes)的问题
- SpringBoot 项目不加载 application.properties 配置文件
- 小程序启动时加载顺序,App()所做的事
- 加载WebApplicationContext的方式