From 795551c3939f432ec8c5b1420124bbd0259cb821 Mon Sep 17 00:00:00 2001 From: Davin Kevin Date: Wed, 29 Jun 2016 16:31:22 +0200 Subject: [PATCH] fix(example): modification in example 55 (#281) In latest version, example 55 doesn't work because the projection was incorrectly set. This problem appears after the PR #233. Linked to #259 --- examples/055-layers-geojon-dynamic-load-example.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/055-layers-geojon-dynamic-load-example.html b/examples/055-layers-geojon-dynamic-load-example.html index ec57f494..d94b38a7 100644 --- a/examples/055-layers-geojon-dynamic-load-example.html +++ b/examples/055-layers-geojon-dynamic-load-example.html @@ -17,7 +17,7 @@ type: 'GeoJSON', geojson: { object: italy, - projection: 'EPSG:3857' + projection: 'EPSG:4326' } }, style: { @@ -35,7 +35,7 @@ var sourceTemplate = { type: 'GeoJSON', geojson: { - projection: 'EPSG:3857', + projection: 'EPSG:4326', object: {} } };