使用GeoJSON与Leaflet:关于GeoJSON

使用GeoJSON与Leaflet:关于GeoJSON
发布日期: 2017-04-19 更新日期: 2017-04-19 编辑:xuzhiping 浏览次数: 3165

 var geojsonFeature = {
    "type": "Feature",
    "properties": {
        "name": "Coors Field",
        "amenity": "Baseball Stadium",
        "popupContent": "This is where the Rockies play!"
    },
    "geometry": {
        "type": "Point",
        "coordinates": [-104.99404, 39.75621]
    }
};
说明:

使用GeoJSON与Leaflet:关于GeoJSON