我正在开展一个项目来呈现a map of Europe,目的是显示与欧盟和不同成员国之间的数据科学工作相关的数据。
目前地图上显示的是国家的划分,但我希望地图不仅可以显示国家,还可以显示组成行政区域,例如法国和德国联邦州的部门,相当于美国的50个州。
在europeMap.js文件中,我们读到了文件europe.json
1 /**
2 * Contains the class for constructing the map of Europe.
3: * europe.json was created using
4 * data from Natural Earth: http://naturalearthdata.com
5 * and GDAL: http://www.gdal.org/
.
244
245 // load the europe data
246: d3.json("data/map/europe.json", function (error, europe) {
247 if (error) { throw error; }
根据我之前对d3的经验,正确的方法可能是尝试使用natural earth创建一个类似于europe.json的文件 - 但是使用不同的行政区域 - 是吗?
如果我想展示这些区域 - 就像这样:http://milkbread.github.io/subpages/webmapping_examples/d3-choropleth_germany.html
我需要做些什么才能更改该文件europe.json
文件?
它可以与当前的交换吗?