为地名和坐标创建JSON

时间:2013-12-02 11:23:51

标签: json

我有以下内容:

PT-PT:[里斯本,葡萄牙] [38.7138,9.1394];

EN-GB:伦敦,英国] [51.5072,0.1275]

因此,对于每种文化,例如pt-PT和en-GB代码,我想用它的coordenates定义一个地方。

这是什么样的JSON格式?

1 个答案:

答案 0 :(得分:0)

JSON的兴趣在于您可以根据需要设置数据。 在您的情况下,一个好主意是遵循GeoJSON格式。

http://geojson.org/

{
    "type": "FeatureCollection",
    "features": [
        {
            "type": "Feature",
            "geometry": {"type": "Point", "coordinates": [38.7138,9.1394]},
            "properties": {"city": "Lisboa", "country": "Portugal"}
        }
    ]
}