在OSM地图上添加geojson文件

时间:2016-12-02 13:54:02

标签: ajax openstreetmap geojson

我想在我的开放街道地图上放置一个geojson文件,以获得一个标记(位置)

我的geojson文件如下:

{ "type": "Feature", "properties": { "@id": "way\/76732062", "access": "customers", "amenity": "bicycle_parking", "bicycle_pa": "shed", "building": "yes", "capacity": "45", "name": "Vélopole - Les Près", "source": "cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2009", "operator": null, "network": null, "surveillan": null, "wall": null, "covered": null, "supervised": null, "fee": null, "lit": null, "level": null }, "geometry": { "type": "Point", "coordinates": [ 708894.79501892452, 7061474.7829677835 ] } },

作为初级开发人员,我绝对不知道如何将此文件添加到我的地图

我看到许多例如:

$.getJSON("http://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/all_day.geojson", function(data) { addDataToMap(data, map); });

但我不知道如何使其适应我的代码

提前感谢您的回答!

0 个答案:

没有答案