From 80fa2dd0ef8461e5d6c189edf2f3fa50d441b39e Mon Sep 17 00:00:00 2001 From: Tom Payne Date: Fri, 8 Nov 2013 23:40:49 +0100 Subject: [PATCH] Change example data --- examples/geojson.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/geojson.js b/examples/geojson.js index f36f9f579b..247ec4d9f2 100644 --- a/examples/geojson.js +++ b/examples/geojson.js @@ -58,21 +58,21 @@ ol.format.GeoJSON.readObject({ 'type': 'Feature', 'geometry': { 'type': 'LineString', - 'coordinates': [[-1e7, -1e7], [1e7, 1e7]] + 'coordinates': [[4e6, -2e6], [8e6, 2e6]] } }, { 'type': 'Feature', 'geometry': { 'type': 'LineString', - 'coordinates': [[-1e7, 1e7], [1e7, -1e7]] + 'coordinates': [[4e6, 2e6], [8e6, -2e6]] } }, { 'type': 'Feature', 'geometry': { 'type': 'Polygon', - 'coordinates': [[[-5e6, -5e6], [0, 5e6], [5e6, -5e6]]] + 'coordinates': [[[-5e6, -1e6], [-4e6, 1e6], [-3e6, -1e6]]] } }, {