這裏是如此的第一topojson
問題。我在渲染地圖時遇到問題(紐約市自治市),但無法弄清原因。下面的代碼只是this example的一個副本,具有不同的topojson文件。我已經上傳文件here。以下是關於我如何創建文件的詳細信息。現在,我只是變得混亂的線條。可能原因是topojson文件,但我不知道什麼是錯的。繪製與d3.js topojson文件(NYC自治市鎮和普查區)
PS:我無法標記此爲topojson
因爲標籤還沒有被之前
TopoJSON文件
1)下載shape文件使用從here
(在「鎮&社區區」的文件‘行政區’(左),ArcView的Shape文件)
2)簡化shape文件與QGIS
3)轉換爲TopoJSON與
ogr2ogr -f geoJSON nybb-geo.json nybb.shp
topojson -o nybb.json nybb-geo.json
HTML/JS代碼
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.boundary {
fill: none;
stroke: #000;
stroke-width: .5px;
}
</style>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v0.min.js"></script>
<script>
var width = 960,
height = 500;
var path = d3.geo.path();
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
d3.json("/geo/nybb.json", function(error, topology) {
svg.append("path")
.datum(topojson.object(topology, topology.objects['nybb-geo'].geometries[0]))
.attr("d", path)
.attr("class", "boundary");
});
</script>
只是一個猜測。嘗試重新投影shapefile到wgs84,然後重試。 – decio