ECharts 城市 JSON 是一種可以輕松在 echarts 中繪制地理數據的格式。該格式包含了中國各個城市的地理數據,可以用于繪制地圖、熱力圖等圖表。
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"id": "110000",
"properties": {
"cp": [
116.395645,
39.929986
],
"name": "北京市",
"childNum": 16
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
116.220191,
39.850124
],
[
116.22119,
39.847472
],
...
]
]
}
},
...
]
}
需要注意的是,echarts 城市 JSON 中的坐標系為經緯度坐標系,需要通過 echarts 中對應的 API 進行坐標系轉換后繪制地圖。
此外,如果需要繪制海外城市或國家的地圖,可以查找相應的地理數據并轉換為 echarts 可用的 JSON 格式進行繪制。
上一篇vue寫評分功能
下一篇python 類定義模板