赞
踩
引入本地文件(与html同一目录)
<script src="o.json"></script>
o.json
改为geojson格式
- let geoo = {'type': 'FeatureCollection','features':[]}
- os.forEach(element =>{
- geoo.features.push({
- 'type':'Feature',
- 'properties':{},
- 'geometry':{
- "type": "Point",
- 'coordinates':element.lnglat
- }
- })
- })
-
- var geo = new Loca.GeoJSONSource({
- data: geoo,
- });
- ----
- //使用
- pl.setSource(geo);
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。