我一直在尝试运行Mike Bostock的See-Through Globe示例,但如果您尝试在本地重现它,则对其json文件的引用不正确。
问题来自这行代码:
d3.json("/mbostock/raw/4090846/world-110m.json", function(error, topo) {
var land = topojson.feature(topo, topo.objects.land),
grid = graticule();
});
我按照这个例子: d3: us states in topojson format filesize is way too large
并尝试将网址更改为这些版本,以便更好地为外部用户引用这些文件;
"https://raw.github.com/mbostock/topojson/master/examples/world-110m.json"
"https://render.github.com/mbostock/topojson/master/examples/world-110m.json"
"http://bl.ocks.org/mbostock/raw/4090846/world-110m.json"
但我永远不允许访问。关于如何正确引用json文件的任何想法?
如果他的其他例子也尝试了一些,并且每次都遇到同样的问题。还有其他人在复制这些例子方面取得了成功吗?
答案 0 :(得分:6)
由于源策略相同,您无法访问远程json文件。并且您将无法使用file:protocol检索JSON对象。除非您想通过直接嵌入JSON来对代码进行手术,否则您将不得不运行本地服务器。
运行本地Web服务器的简便方法是执行:
python -m SimpleHTTPServer 8888 &
来自您网站的“根”目录,然后通过http://localhost:8888
答案 1 :(得分:5)
您可以直接在此处访问数据:http://bl.ocks.org/mbostock/raw/4090846/world-110m.json
要使其正常工作,您需要在脚本中创建一个新变量,并直接将json分配给它。
您提供的小提琴代码:
var topo = // Paste data from provided link here. It will be one big object literal.
var width = 960,
height = 960,
speed = -1e-2,
start = Date.now();
var sphere = {type: "Sphere"};
var projection = d3.geo.orthographic()
.scale(width / 2.1)
.translate([width / 2, height / 2])
.precision(.5);
var graticule = d3.geo.graticule();
var canvas = d3.select("body").append("canvas")
.attr("width", width)
.attr("height", height);
var context = canvas.node().getContext("2d");
var path = d3.geo.path()
.projection(projection)
.context(context);
// d3.json("https://render.github.com/mbostock/topojson/master/examples/world-110m.json", function(error, topo) {
var land = topojson.feature(topo, topo.objects.land), // topo var is now provided by pasted-in data instead of fetched json.
grid = graticule();
d3.timer(function() {
context.clearRect(0, 0, width, height);
projection.rotate([speed * (Date.now() - start), -15]).clipAngle(90);
context.beginPath();
path(sphere);
context.lineWidth = 3;
context.strokeStyle = "#000";
context.stroke();
context.fillStyle = "#fff";
context.fill();
projection.clipAngle(180);
context.beginPath();
path(land);
context.fillStyle = "#dadac4";
context.fill();
context.beginPath();
path(grid);
context.lineWidth = .5;
context.strokeStyle = "rgba(119,119,119,.5)";
context.stroke();
projection.clipAngle(90);
context.beginPath();
path(land);
context.fillStyle = "#737368";
context.fill();
context.lineWidth = .5;
context.strokeStyle = "#000";
context.stroke();
});
// });
d3.select(self.frameElement).style("height", height + "px");
我本可以直接修改小提琴,但json数据文件足够大,当我尝试将其粘贴时,jsfiddle chokes。
希望这有帮助。