我有一系列用户包含他们的邮政编码,我想根据他们在谷歌地图上的邮政编码显示他们的位置,但我无法将我的邮政编码转换成GeoJSON格式。帮帮我
答案 0 :(得分:0)
从我查看的内容看GeoJSON使用纬度和经度吗?
如果是这种情况,你可以根据你在查询中输入的邮政编码使用另一个告诉你纬度和经度的api。
使用google api:
http://maps.googleapis.com/maps/api/geocode/json?address= {zipcode}
从上面的JSON中提取lat / lon坐标值:
var zipCode; //from your array of users
$.getJSON("http://maps.googleapis.com/maps/api/geocode/json?address=" + zipCode, function (json){
var latitude = json.results[0].geometry.location.lat;
var longitude = json.results[0].geometry.location.lng;
//Handle your geoJSON here, I'm just guessing on this part I don't know geoJSON
var geojsonFeature =
{
"type": "Feature",
"properties":
{
"name": "",
"amenity": "",
"popupContent": ""
},
"geometry":
{
"type": "Point",
"coordinates": [latitude, longitude]
}
};
L.geoJSON(geojsonFeature).addTo(map);
});