From 3aaa0dd0f7e7f65f428af22856d39db6ce467c02 Mon Sep 17 00:00:00 2001 From: Tom Payne Date: Thu, 23 Jan 2014 03:30:14 +0100 Subject: [PATCH] Move us.json into topojson subdirectory --- examples/d3.js | 2 +- examples/data/{ => topojson}/us.json | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename examples/data/{ => topojson}/us.json (100%) diff --git a/examples/d3.js b/examples/d3.js index 9ca323ad01..7636a78d29 100644 --- a/examples/d3.js +++ b/examples/d3.js @@ -31,7 +31,7 @@ var map = new ol.Map({ /** * Load the topojson data and create an ol.layer.Image for that data. */ -d3.json('data/us.json', function(error, us) { +d3.json('data/topojson/us.json', function(error, us) { var features = topojson.feature(us, us.objects.counties); /** diff --git a/examples/data/us.json b/examples/data/topojson/us.json similarity index 100% rename from examples/data/us.json rename to examples/data/topojson/us.json