在哪里放置额外的GeoJson属性

时间:2016-06-03 12:20:18

标签: d3.js geojson specifications

我正在使用GeoJson格式为国家/地区创建地图,但我想知道在哪里放置额外的国家/地区信息,例如NameCountry Code和一些有用的信息。

我知道我们可以轻松地为功能(在我的情况下是区域数据)执行此操作,但在哪里可以放置国家/地区属性?

us.json

{
    "type": "FeatureCollection",
    "features": [
        {
            "type": "Feature",
            "properties": {
                "REGION_ID": 1,
                "REGION_NAME": "My First Region",
            },
            "geometry": {
                "type": "Polygon",
                "coordinates": [
                    [
                        [1.83, 15.93]
                    ],
                    ...
                ]
            }
        }
        ...
    ]
}

1 个答案:

答案 0 :(得分:0)

如果我将其插入Mapbox geojsonhint,则表示没有错误:

{
    "type": "FeatureCollection",
    "properties": {
        "name": "United states of America"  
    },
    "features": [
        {
            "type": "Feature",
            "properties": {
                "REGION_ID": 1,
                "REGION_NAME": "My First Region"
            },
            "geometry": {
                "type": "Polygon",
                "coordinates": [
                    [
                        [1.83, 15.93], [1.83, 15.93], [1.83, 15.93], [1.83, 15.93]
                    ]
                ]
            }
        }

    ]
}