diff --git a/examples/geojson.js b/examples/geojson.js index 9567b33ab8..5af1eb82d4 100644 --- a/examples/geojson.js +++ b/examples/geojson.js @@ -38,6 +38,18 @@ var geoJSONSource = new ol.source.GeoJSON( 'type': 'Polygon', 'coordinates': [[[-5e6, -5e6], [0, 5e6], [5e6, -5e6]]] } + }, + { + 'type': 'Feature', + 'geometry': { + 'type': 'MultiLineString', + 'coordinates': [ + [[-1e6, -7.5e5], [-1e6, 7.5e5]], + [[1e6, -7.5e5], [1e6, 7.5e5]], + [[-7.5e5, -1e6], [7.5e5, -1e6]], + [[-7.5e5, 1e6], [7.5e5, 1e6]] + ] + } } ] }