当前位置:   article > 正文

高德api使用本地json数据_高德获取json api

高德获取json api

引入本地文件(与html同一目录)

<script src="o.json"></script>

o.json 

 改为geojson格式

  1. let geoo = {'type': 'FeatureCollection','features':[]}
  2. os.forEach(element =>{
  3. geoo.features.push({
  4. 'type':'Feature',
  5. 'properties':{},
  6. 'geometry':{
  7. "type": "Point",
  8. 'coordinates':element.lnglat
  9. }
  10. })
  11. })
  12. var geo = new Loca.GeoJSONSource({
  13. data: geoo,
  14. });
  15. ----
  16. //使用
  17. pl.setSource(geo);

 

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号